home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _A00E1853F4404207967C0D4C5A8C8CD7 < prev    next >
Encoding:
Text File  |  2006-08-04  |  759 b   |  29 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_Kaleidoscope():
  13.     return {
  14.         'Angle': 45, 
  15.         'HorizontalOffset': 0, 
  16.         'Scale': -72, 
  17.         'VerticalOffset': 0, 
  18.         'NumOrbits': 3, 
  19.         'RadialSuction': 30, 
  20.         'NumPetals': 2, 
  21.         'EdgeMode': App.Constants.EdgeMode.Transparent, 
  22.         'FillColor': (0,0,0)
  23.         }
  24.  
  25. def Do(Environment):
  26.     # Kaleidoscope
  27.     App.Do( Environment, 'Kaleidoscope',         Preset_Kaleidoscope())
  28.  
  29.